home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.3 KB | 60 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _WINITER_
- #define _WINITER_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
-
- interface ODWindowIterator; // An iterator for all windows
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
-
- interface ODWindowState;
- interface ODWindow;
-
-
- //=====================================================================================
- // Class ODWindowIterator
- //=====================================================================================
-
- interface ODWindowIterator : ODObject
- {
-
- ODWindow First();
-
- ODWindow Next();
-
- ODWindow Last();
-
- ODWindow Previous();
-
- ODBoolean IsNotComplete();
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit;
- releaseorder:
- InitWindowIterator,
- First,
- Next,
- Last,
- Previous,
- IsNotComplete;
-
-
- };
- #endif
- };
-
- #endif // _WINITER_
-